home *** CD-ROM | disk | FTP | other *** search
/ SuperModels in the Rainforest / SuperModels in the Rainforest.iso / rain.dxr / 00010_Girl -- Selector Sprite Script 1.ls < prev    next >
Encoding:
Text File  |  1995-10-13  |  283 b   |  14 lines

  1. on mouseDown
  2.   global giCurrentGirl, giMaxGirls
  3.   buttonLogic()
  4.   if the result = 1 then
  5.     if giCurrentGirl = 1 then
  6.       go("MainLoopEnd")
  7.       set giCurrentGirl to giMaxGirls
  8.     else
  9.       go(the frame - 1)
  10.       set giCurrentGirl to giCurrentGirl - 1
  11.     end if
  12.   end if
  13. end
  14.